home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / Open Transport / Sample Code / DTS Sample Code / Using Symantec⁄OT / OT_SC_Stubs.c < prev   
Encoding:
C/C++ Source or Header  |  1996-11-19  |  633 b   |  38 lines  |  [TEXT/SPM ]

  1. /*
  2. Stub routines to convince Symantec C++ for PPC to link with Open Transport libraries.
  3. See the Q&A for full details.
  4.  
  5. ©1996 Apple Computer, Inc
  6. Quinn "The Eskimo!"
  7. Developer Technical Support
  8. Networking, Communications and Hardware
  9. */
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.     
  15. void SetSelfAsClient(void)
  16. {
  17.         DebugStr("\pSetSelfAsClient -- This is not good.");
  18. }
  19.  
  20. void LoadClass(void)
  21. {
  22.         DebugStr("\pLoadClass -- This is not good.");
  23. }
  24.  
  25. void SetCurrentClient(void)
  26. {
  27.         DebugStr("\pSetCurrentClient -- This is not good.");
  28. }
  29.  
  30. void UnloadClass(void)
  31. {
  32.         DebugStr("\pUnloadClass -- This is not good.");
  33. }
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38.